home *** CD-ROM | disk | FTP | other *** search
- on CheckLHSpageEdge c
- global LHSpile
- set doit to 0
- if objectp(LHSpile) then
- set s1 to TopSprite(LHSpile)
- if s1 <> -1 then
- if rollOver(s1) then
- if AnyStrip(s1, the mouseH, the mouseV) then
- SelectCursor(c)
- PointAt(LHSpageEdge())
- set doit to 1
- else
- SelectCursor(DocumentCursor())
- PointAt(LHStext())
- set doit to 1
- end if
- end if
- end if
- end if
- return doit
- end
-
- on CheckRHSpageEdge c
- global RHSpile
- set doit to 0
- if objectp(RHSpile) then
- set s2 to TopSprite(RHSpile)
- if s2 <> -1 then
- if rollOver(s2) then
- if AnyStrip(s2, the mouseH, the mouseV) then
- SelectCursor(c)
- PointAt(RHSpageEdge())
- set doit to 1
- else
- SelectCursor(DocumentCursor())
- PointAt(RHStext())
- set doit to 1
- end if
- end if
- end if
- end if
- return doit
- end
-